home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Mission 3
/
Mission 3.zip
/
Mission 3.iso
/
texte
/
7up_pd
/
vdilib.h
< prev
next >
Wrap
C/C++ Source or Header
|
1998-10-29
|
2KB
|
61 lines
/*
* VDI-Lib V0.09
*
* started : 20.02.92 (wb)
* last change: 28.07.92 (wb)
*
* Versionen
*---------------------------------------
* 0.04 vom 23.02.92
* 0.05 vom 27.02.92
* - Handle wird nun bei v_opnvwk() übergeben
* 0.06 vom 01.03.92
* - vergessenes Postincrement in vs_color()
* hinzugefügt
* - vst_point() liefer jetzt einen Rückgabewert
* - vergessenes Postincr. bei v_gtext() und
* v_ftext() hinzugefügt
* - Lib um die Funktionen v_cellarray(), vq_cellarray(),
* vsc_expose() vervollständigt
* 0.07 vom 02.03.92
* - Polaroid-Funktionen ergänzt
* 0.08 vom 27.7.92
* - Stackoffsetfehler in v_bez() und v_bez_fill() beseitigt
* 0.09 vom 28.7.92
* - Bestückungsfehler bei v_bez_qual in intin[0] behoben
* - Falsches n_ptsin in v_bez() und v_bez_fill() behoben
*/
/****** VDIparams *******************************************************/
/* Die VDI-Arrays */
typedef struct
{
int contrl[15];
int intin[1024];
int ptsin[128];
int intout[45];
int ptsout[128];
} VDIPARBLK;
extern VDIPARBLK _VDIParBlk;
/* Der VDI-Parameterblock */
typedef struct
{
int *contrl;
int *intin;
int *ptsin;
int *intout;
int *ptsout;
} VDIPB;
/********* zusätzliche Funktionen ***************************************/
/*
* VDI-Handler
*/
void vdi( VDIPB *vdipb );
/************************************************************************/